Skip to content

Instantly share code, notes, and snippets.

@cassiancc
cassiancc / modpack-resources.md
Last active June 6, 2026 17:37
Modpack Resources

A list of resources that may help with modpack development. Also see LambdAurora's OptiFine alternatives, or Modrinth's list of modpack tools (I'll also shoutout PW-GUI, which is a tool that I use daily to develop an upcoming modpack).

Note

This list focuses on what mods can do, but you should also be familiar with the existing vanilla tools for your version. The Minecraft Wiki has tutorials on how to structure datapacks (loot tables, recipes, world generation, advancements, etc.) and resource packs (textures, language files, sounds, etc.). Also see Misode's data pack generators!

Adding blocks/items

These tools allow for adding basic blocks and items without needing to write a mod

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@tigercosmos
tigercosmos / image-stitching-using-sift-ransac.ipynb
Created May 21, 2020 17:24
Image stitching using SIFT and RANSAC
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@KitBaroness
KitBaroness / win11.qcow2
Last active June 6, 2026 17:28
WINDOWS 11 VIRTUAL MACHINE SETUP (Virt-Manager + VirtIO Drivers)
This document provides a step-by-step guide for installing and configuring Windows 11 in a virtualized environment using virt-manager and KVM (Kernel-based Virtual Machine) on a Linux host such as Kali, Ubuntu, or Fedora.
The goal is to create a fully functional Windows 11 virtual machine that:
Operates as a complete Windows installation with access to Microsoft Store, Windows Subsystem for Linux (WSL), and all standard Windows features.
Uses VirtIO drivers for optimal disk and network performance.
Supports USB passthrough for devices such as game controllers or peripherals.
@immacodder
immacodder / .md
Last active June 6, 2026 17:18
Steam Deck desktop usability optimizations

Here I will teach you how to make steam deck's desktop mode actually usable. By default, you can only install flatpaks, which extremely limits the possibilities of your computer (steam deck is a computer, don't forget) I myself have been using steam deck as my main computer for about 3 months now and while at first I mainly used windows on it, I soon realized that I could utilize Linux without sacrificing functionality. Bofore each set of command there will be either Host (SteamOS) or Guest (Inside a distrobox distro). If after the command you see Host, run it inside your ususal terminal, if inside of Guest, you'll first need to distrbox-enter yourdistro

Step 1

Install podman and distrobox.

Explanation

Distrobox acts as a linux distribution inside a linux distribution. You can, for example, have an arch based distribution and install ubuntu based distribution with full support for GUI applications. It transparently mounts your user's home directory in a sandbox,